home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / msysjour / vol06 / 01 / kermit / wntmnu.rc < prev    next >
Text File  |  1990-12-31  |  1KB  |  48 lines

  1. /* 
  2.  * WNTMNU resource file
  3.  *
  4.  * Menus and string tables for WNTERM
  5.  *
  6.  * Copyright (c) 1989, 1990
  7.  * William S. Hall
  8.  * 3665 Benton Street, #66
  9.  * Santa Clara, CA 95051
  10.  */
  11.  
  12. /* strings */
  13. STRINGTABLE
  14. BEGIN
  15.     IDS_APPNAME,        "Wnterm"
  16.     IDS_ABOUT,            "A&bout..."
  17.     IDS_WINTITLE,        "Windows Terminal on "
  18.     IDS_ICONSTRING        "WTRM"
  19.     IDS_OFFLINE            "&Local"
  20.     IDS_ONLINE            "&Line"
  21.     IDS_COM1            "COM1:"
  22.     IDS_COM2            "COM2:"
  23.     IDS_COM3            "COM3:"
  24.     IDS_COM4            "COM4:"
  25.     IDS_PORTSECTION        "ports"
  26.     IDS_CANNOTOPENFIRSTPORT    "Cannot open this port; try the next one?"
  27.     IDS_CANNOTOPENANYPORT    "Cannot open any communications port; exiting."
  28.     IDS_COMMSETERROR        "Cannot set communications port."
  29.     IDS_SMALLFONT        "SmallFont"
  30.     IDS_FONTFACE        "Courier"
  31.     IDS_CANNOTOPENPORT        "Cannot open communications port."
  32. END
  33.  
  34. /* menu */
  35. WNTERM MENU
  36. BEGIN
  37.     MENUITEM "&Local", IDM_OFFLINE
  38.     POPUP "&Terminal"
  39.     BEGIN
  40.     MENUITEM "&Communications...", IDM_COMM
  41.     MENUITEM "&LocalEcho", IDM_LOCAL
  42.     MENUITEM "Clear&Screen", IDM_CLEAR
  43.     MENUITEM SEPARATOR
  44.     MENUITEM "A&bout...", IDM_ABOUT
  45.     END
  46. END
  47.  
  48.